/* ================= NAVBAR ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
}

.container{

    width:92%;
    max-width:1300px;

    margin:auto;

}

/* Navbar */

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:80px;

    background:#ffffff;

    box-shadow:0 3px 15px rgba(0,0,0,.08);

    z-index:9999;

}

.nav-container{

    height:80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/* Logo */

.logo img{

    height:55px;

    width:auto;

}

/* Navigation */

.nav-links{

    display:flex;

    list-style:none;

    gap:35px;

    align-items:center;

}

.nav-links li{

    list-style:none;

}

.nav-links a{

    text-decoration:none;

    color:#1e293b;

    font-size:16px;

    font-weight:600;

    position:relative;

    transition:.3s;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:#00bfff;

    transition:.3s;

}

.nav-links a:hover::after,
.nav-links a.active::after{

    width:100%;

}

.nav-links a:hover,
.nav-links a.active{

    color:#00bfff;

}

/* Button */

.quote-btn{

    padding:14px 32px;

    border-radius:50px;

    text-decoration:none;

    color:#ffffff;

    font-weight:600;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    transition:.35s;

}

.quote-btn:hover{

    transform:translateY(-3px);

}

/* Mobile Icon */

.menu-toggle{

    display:none;

    background:none;

    border:none;

    font-size:26px;

    cursor:pointer;

    color:#1e293b;

}

/* ================= MOBILE ================= */

@media(max-width:992px){

    .menu-toggle{

        display:block;

    }

    .quote-btn{

        display:none;

    }

    .nav-links{

        position:absolute;

        top:80px;

        left:0;

        width:100%;

        background:#ffffff;

        display:flex;

        flex-direction:column;

        align-items:center;

        gap:25px;

        padding:30px 0;

        box-shadow:0 10px 25px rgba(0,0,0,.12);

        transform:translateY(-120%);

        opacity:0;

        visibility:hidden;

        transition:.35s;

    }

    .nav-links.active{

        transform:translateY(0);

        opacity:1;

        visibility:visible;

    }

}

/* ================= GET IN TOUCH ================= */

.contact-info-section{

    padding:100px 0;

    background:linear-gradient(
        135deg,
        #f8fcff,
        #f7f5ff
    );

}

/* ================= HEADING ================= */

.contact-info-section .section-title{

    text-align:center;

    margin-bottom:60px;

}

.contact-info-section .section-title h2{

    font-size:clamp(2.8rem,5vw,4rem);

    font-weight:800;

    color:#0f172a;

    margin-bottom:15px;

}

.contact-info-section .section-title h2 span{

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.contact-info-section .section-title p{

    font-size:18px;

    color:#000000;

    line-height:1.7;

}

/* ================= GRID ================= */

.contact-grid{

    display:grid;

    grid-template-columns:repeat(4, 1fr);

    justify-content:center;

    gap:35px;

    margin-top:20px;

}

/* ================= CARD ================= */

.contact-card{
    background:#ffffff;
    border:1px solid #e6edf5;
    border-radius:20px;
    padding:45px 30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(15,23,42,.08);
    transition:.35s ease;

    min-height: 340px;   /* Increase or decrease as needed */
    
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;
}

.contact-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(15,23,42,.15);

}

/* ================= ICON ================= */

.contact-icon{

    width:78px;

    height:78px;

    margin:0 auto 28px;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    color:#ffffff;

    font-size:30px;

    transition:.35s;

}

.contact-card:hover .contact-icon{

    transform:rotate(-8deg) scale(1.08);

}

/* ================= TEXT ================= */

.contact-card h3{

    font-size:30px;

    font-weight:700;

    color:#0f172a;

    margin-bottom:18px;

}

.contact-card a{

    display:block;

    text-decoration:none;

    color:#00a8ff;

    font-size:20px;

    font-weight:600;

    margin-bottom:14px;

    transition:.3s;

}

.contact-card a:hover{

    color:#6a11cb;

}

.contact-card p{

    font-size:16px;

    color:#000000;

    line-height:1.7;

}

/* ================= ANIMATION ================= */

.contact-card{

    opacity:0;

    transform:translateY(50px);

    transition:.7s ease;

}

.contact-card.show{

    opacity:1;

    transform:translateY(0);

}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .contact-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .contact-info-section{

        padding:80px 0;

    }

    .contact-grid{

        grid-template-columns:1fr;

        gap:22px;

    }

    .contact-card{

        padding:35px 25px;

    }

    .contact-card h3{

        font-size:26px;

    }

    .contact-card a{

        font-size:18px;

    }

}

/* ================= CONTACT FORM SECTION ================= */

.contact-form-section{

    padding:100px 0;

    background:linear-gradient(
        135deg,
        #f8fcff,
        #f7f5ff
    );

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1.5fr 1fr;

    gap:35px;

    align-items:start;

}

/* ================= FORM CARD ================= */

.contact-form-card{

    background:#ffffff;

    padding:35px;

    border-radius:20px;

    border:1px solid #e5edf5;

    box-shadow:0 10px 30px rgba(15,23,42,.08);

}

.contact-form-card h2{

    font-size:32px;

    color:#0f172a;

    margin-bottom:30px;

    font-weight:700;

}

/* ================= FORM ================= */

.form-row{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.form-group{

    margin-bottom:18px;

}

.form-group input,
.form-group textarea{

    width:100%;

    padding:16px 18px;

    border:1px solid #dbe5f1;

    border-radius:12px;

    outline:none;

    font-size:15px;

    transition:.3s;

    font-family:inherit;

}

.form-group input:focus,
.form-group textarea:focus{

    border-color:#00c6ff;

    box-shadow:0 0 0 4px rgba(0,198,255,.12);

}

.form-group textarea{

    resize:vertical;

    min-height:140px;

}

/* ================= SERVICE CHECKBOX ================= */

.service-title{

    display:block;

    font-size:16px;

    font-weight:700;

    margin-bottom:15px;

    color:#0f172a;

}

.service-checkboxes{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:12px;

}

.service-checkboxes label{

    display:flex;

    align-items:center;

    gap:10px;

    padding:12px 14px;

    background:#f8fbff;

    border:1px solid #dbe5f1;

    border-radius:12px;

    cursor:pointer;

    transition:.3s;

    font-size:14px;

}

.service-checkboxes label:hover{

    border-color:#00c6ff;

    background:#eefaff;

}

.service-checkboxes input{

    width:18px;

    height:18px;

    accent-color:#00c6ff;

}

/* ================= BUTTON ================= */

.submit-btn{

    width:100%;

    padding:18px;

    border:none;

    border-radius:50px;

    cursor:pointer;

    font-size:18px;

    font-weight:700;

    color:#ffffff;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    transition:.35s;

}

.submit-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(0,198,255,.30);

}

.submit-btn i{

    margin-left:10px;

}

/* ================= SIDEBAR ================= */

.contact-sidebar{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.info-card{

    background:#ffffff;

    padding:28px;

    border-radius:20px;

    border:1px solid #e5edf5;

    box-shadow:0 8px 25px rgba(15,23,42,.08);

}

.info-card:nth-child(1){

    background:linear-gradient(
        135deg,
        #eefaff,
        #f8fcff
    );

}

.info-card:nth-child(2){

    background:linear-gradient(
        135deg,
        #f8f6ff,
        #ffffff
    );

}

.info-card:nth-child(3){

    background:linear-gradient(
        135deg,
        #eefcf9,
        #f8fcff
    );

}

.info-card h3{

    font-size:24px;

    color:#0f172a;

    margin-bottom:20px;

}

.hours-row{

    display:flex;

    justify-content:space-between;

    margin-bottom:12px;

    color:#000000;

}

.social-icons{

    display:flex;

    gap:15px;

}

.social-icons a{

    width:48px;

    height:48px;

    border-radius:12px;

    background:#ffffff;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:#0f172a;

    border:1px solid #dbe5f1;

    transition:.3s;

}

.social-icons a:hover{

    color:#ffffff;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    transform:translateY(-4px);

}

.status{

    margin-top:20px;

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

    color:#10b981;

}

.status-dot{

    width:10px;

    height:10px;

    border-radius:50%;

    background:#10b981;

}

/* ================= ANIMATION ================= */

.contact-form-card,
.info-card{

    opacity:0;

    transform:translateY(40px);

    transition:.7s;

}

.contact-form-card.show,
.info-card.show{

    opacity:1;

    transform:translateY(0);

}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .contact-wrapper{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .form-row{

        grid-template-columns:1fr;

    }

    .service-checkboxes{

        grid-template-columns:1fr;

    }

}

/* ================= OUR OFFICE ================= */

.office-section{

    padding:120px 0;

    background:linear-gradient(
        135deg,
        #f8fcff,
        #f6f5ff
    );

}

.office-wrapper{

    display:flex;

    justify-content:center;

    align-items:center;

}

.office-card{

    width:100%;

    max-width:500px;

    background:#ffffff;

    border-radius:22px;

    padding:35px;

    border:1px solid #e8eef5;

    box-shadow:0 15px 40px rgba(15,23,42,.08);

    transition:.4s ease;

}

.office-card:hover{

    transform:translateY(-10px);

    box-shadow:0 22px 55px rgba(0,0,0,.15);

}

.office-badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:40px;

    font-size:13px;

    font-weight:600;

    color:#ffffff;

    margin-bottom:22px;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

}

.office-card h3{

    font-size:32px;

    font-weight:700;

    color:#0f172a;

    margin-bottom:25px;

}

.office-details{

    list-style:none;

    padding:0;

    margin:0 0 30px;

}

.office-details li{

    display:flex;

    align-items:flex-start;

    gap:14px;

    margin-bottom:18px;

    color:#000000;

    font-size:16px;

    line-height:1.8;

}

.office-details li i{

    color:#00bfff;

    margin-top:4px;

    min-width:18px;

}

.direction-btn{

    display:block;

    width:100%;

    text-align:center;

    text-decoration:none;

    padding:15px;

    border-radius:50px;

    border:1px solid #dce5ef;

    color:#0f172a;

    font-size:16px;

    font-weight:600;

    transition:.35s;

    background:#ffffff;

}

.direction-btn:hover{

    color:#ffffff;

    border-color:transparent;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    box-shadow:0 12px 30px rgba(0,198,255,.28);

}

/* ================= ANIMATION ================= */

.hidden-card{

    opacity:0;

    transform:translateY(60px);

}

.show-card{

    opacity:1;

    transform:translateY(0);

    transition:.8s ease;

}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

    .office-section{

        padding:90px 0;

    }

    .office-card{

        padding:28px;

    }

    .office-card h3{

        font-size:28px;

    }

    .office-details li{

        font-size:15px;

    }

}

/* ================= OUR OFFICE ================= */

.office-section{

    padding:120px 0;

    background:linear-gradient(
        135deg,
        #f8fcff,
        #f6f5ff
    );

}

/* ================= TITLE ================= */

.office-section .section-title{

    text-align:center;

    margin-bottom:55px;

}

.office-section .section-title h2{

    font-size:clamp(2.8rem,5vw,4rem);

    font-weight:800;

    color:#0f172a;

    margin-bottom:15px;

}

.office-section .section-title h2 span{

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.office-section .section-title p{

    max-width:700px;

    margin:auto;

    font-size:18px;

    color:#000000;

    line-height:1.7;

}

/* ================= OFFICE CARD ================= */

.office-wrapper{

    display:flex;

    justify-content:center;

    align-items:center;

    width:100%;

}

.office-card{

    width:100%;

    max-width:520px;

    background:#ffffff;

    border-radius:24px;

    padding:38px;

    border:1px solid #e8eef5;

    box-shadow:0 15px 40px rgba(15,23,42,.08);

    transition:.35s ease;

}

.office-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.office-badge{

    display:inline-block;

    padding:8px 20px;

    border-radius:40px;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    color:#ffffff;

    font-size:13px;

    font-weight:600;

    margin-bottom:22px;

}

.office-card h3{

    font-size:34px;

    font-weight:700;

    color:#0f172a;

    margin-bottom:28px;

}

.office-details{

    list-style:none;

    padding:0;

    margin:0 0 35px;

}

.office-details li{

    display:flex;

    align-items:flex-start;

    gap:15px;

    margin-bottom:20px;

    color:#000000;

    font-size:16px;

    line-height:1.8;

}

.office-details li i{

    color:#00bfff;

    width:18px;

    margin-top:5px;

}

.direction-btn{

    display:block;

    width:100%;

    padding:16px;

    border-radius:50px;

    text-align:center;

    text-decoration:none;

    border:1px solid #dbe5f1;

    color:#0f172a;

    font-size:16px;

    font-weight:600;

    transition:.35s ease;

    background:#ffffff;

}

.direction-btn:hover{

    color:#ffffff;

    border-color:transparent;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    box-shadow:0 15px 35px rgba(0,198,255,.28);

}

/* ================= ANIMATION ================= */

.hidden-card{

    opacity:0;

    transform:translateY(60px);

}

.show-card{

    opacity:1;

    transform:translateY(0);

    transition:.8s ease;

}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

    .office-section{

        padding:90px 0;

    }

    .office-card{

        padding:28px;

    }

    .office-card h3{

        font-size:28px;

    }

    .office-details li{

        font-size:15px;

    }

    .office-section .section-title h2{

        font-size:40px;

    }

    .office-section .section-title p{

        font-size:16px;

    }

}
/* ================= FOOTER ================= */

.footer{

    background:#1e293b;

    color:#cbd5e1;

    padding:90px 0 25px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr repeat(3,1fr);

    gap:50px;

}

.footer-column h3{

    font-size:28px;

    color:#ffffff;

    margin-bottom:28px;

    font-weight:700;

}

/* Logo */

.footer-logo{

    display:inline-block;

    margin-bottom:25px;

}

.footer-logo img{

    width:100%;

    max-width:190px;

    height:auto;

}

/* About */

.footer-about p{

    line-height:1.9;

    margin-bottom:35px;

    color:#94a3b8;

    font-size:17px;

}

/* Contact */

.footer-contact{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.contact-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

}

.contact-item i{

    width:48px;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:14px;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    color:#ffffff;

    flex-shrink:0;

}

.contact-item a,
.contact-item span{

    color:#cbd5e1;

    text-decoration:none;

    line-height:1.8;

    transition:.3s;

}

.contact-item a:hover{

    color:#00d4ff;

}

/* Links */

.footer-column ul{

    list-style:none;

}

.footer-column ul li{

    margin-bottom:18px;

}

.footer-column ul li a{

    color:#cbd5e1;

    text-decoration:none;

    transition:.3s;

    position:relative;

}

.footer-column ul li a:hover{

    color:#00d4ff;

    padding-left:8px;

}

/* Social */

.footer-social{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-top:35px;

}

.footer-social a{

    width:50px;

    height:50px;

    border-radius:15px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:#ffffff;

    background:linear-gradient(
        135deg,
        #00c6ff,
        #6a11cb
    );

    transition:.35s;

}

.footer-social a:hover{

    transform:translateY(-6px);

    box-shadow:0 12px 30px rgba(0,198,255,.35);

}

/* Bottom */

.footer-bottom{

    margin-top:70px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.12);

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom p{

    color:#94a3b8;

}

.footer-bottom-links{

    display:flex;

    gap:25px;

}

.footer-bottom-links a{

    color:#94a3b8;

    text-decoration:none;

    transition:.3s;

}

.footer-bottom-links a:hover{

    color:#00d4ff;

}

/* Responsive */

@media(max-width:1100px){

    .footer-grid{

        grid-template-columns:1fr 1fr;

        gap:50px;

    }

}

@media(max-width:768px){

    .footer{

        padding:70px 0 25px;

    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:45px;

    }

    .footer-column h3{

        font-size:24px;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }

    .footer-bottom-links{

        flex-wrap:wrap;

        justify-content:center;

    }

}

@media(max-width:768px){

    .cta-buttons{

        flex-direction:column;

        align-items:center;

    }

    .cta-btn{

        width:100%;

        max-width:350px;

    }

    .contact-box p{

        font-size:24px;

    }

}